/* Clean Statistics Styles */
.bg-light {
    background-color: #f8f9ff !important;
}

.stat-card-clean {
    padding: 40px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
    border: 1px solid #f0f3ff;
}

.stat-card-clean:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.stat-number-clean {
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 15px;
    color: #4a6cf7;
    font-family: 'Inter', sans-serif;
}

.stat-title-clean {
    font-size: 18px;
    font-weight: 500;
    color: #555;
    line-height: 1.4;
    max-width: 200px;
    margin: 0 auto;
}

/* Optional: Different colors for each stat */
.stat-card-clean:nth-child(1) .stat-number-clean {
    color: #ff6b35; /* Orange */
}

.stat-card-clean:nth-child(2) .stat-number-clean {
    color: #4a6cf7; /* Blue */
}

.stat-card-clean:nth-child(3) .stat-number-clean {
    color: #2ec4b6; /* Green */
}

.report-tabs .nav-pills .nav-link {
    border: 2px solid #f0f3ff;
    border-radius: 50px;
    padding: 12px 25px;
    margin: 0 10px 10px;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
}

.report-tabs .nav-pills .nav-link.active {
    background: #ff6b35;
    border-color: #22223b;
    color: white;
    box-shadow: 0 4px 15px rgba(74, 108, 247, 0.3);
}

.report-tabs .nav-pills .nav-link:hover:not(.active) {
    border-color: #22223b;
    color: #22223b;
}

.report-features {
    list-style: none;
    padding-left: 0;
}

.report-features li {
    margin-bottom: 10px;
    padding-left: 0;
}